projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
59ab72d
)
test/py/tests/test_sleep.py: test time approximately
author
Heinrich Schuchardt
<
[email protected]
>
Fri, 13 Oct 2017 20:28:31 +0000
(22:28 +0200)
committer
Tom Rini
<
[email protected]
>
Mon, 16 Oct 2017 17:45:37 +0000
(13:45 -0400)
On qemu errors like
assert 2.
999650001525879
>= 3
occur.
According to the comment in the code the test is meant to be
approximate. So we should accept some milliseconds less.
Cc: Stephen Warren <
[email protected]
>
Signed-off-by: Heinrich Schuchardt <
[email protected]
>
Reviewed-by: Stephen Warren <
[email protected]
>
test/py/tests/test_sleep.py
patch
|
blob
|
history
diff --git
a/test/py/tests/test_sleep.py
b/test/py/tests/test_sleep.py
index b59a4cfc0fc295cae3cf28e81bfb3f54825aa701..64e0571326224ba42322c780974e7281f1ce1367 100644
(file)
--- a/
test/py/tests/test_sleep.py
+++ b/
test/py/tests/test_sleep.py
@@
-17,7
+17,7
@@
def test_sleep(u_boot_console):
u_boot_console.run_command('sleep %d' % sleep_time)
tend = time.time()
elapsed = tend - tstart
- assert elapsed >=
sleep_time
+ assert elapsed >=
(sleep_time - 0.01)
if not u_boot_console.config.gdbserver:
# 0.25s margin is hopefully enough to account for any system overhead.
assert elapsed < (sleep_time + 0.25)